Skip to content

Instantly share code, notes, and snippets.

@soheilsec
soheilsec / نصب v2ray روی میکروتیک
Created September 15, 2023 21:00
نصب v2ray روی میکروتیک
اولین به این اموزش نیاز هست
https://help.mikrotik.com/docs/display/ROS/Container
فعال کردن کانتینر
/system/device-mode/update container=yes
ریبوت سخت افزاری
ساخت اینترفیس و نت
/interface/veth/add name=veth1 address=172.17.0.2/24 gateway=172.17.0.1
@JoakimThorsen
JoakimThorsen / TMC links.md
Last active May 13, 2026 04:50
An attempt at collecting TMC-related resources, websites, mods, servers, and other links.
@dahaha-365
dahaha-365 / profile.yaml
Last active May 13, 2026 04:49
Stash 快捷懒人配置
proxy-providers:
Provider-1:
interval: 600
url: http://sub.store/download/Provider-1?target=Stash
Provider-2:
interval: 600
url: http://sub.store/download/Provider-2?target=Stash
Provider-3:
interval: 600
url: http://sub.store/download/Provider-3?target=Stash
@val1141
val1141 / Тема 1. Требования.md
Last active May 13, 2026 04:47
Подготовка к собеседованию на системного аналитика

1. Какие есть способы сбора требований? Какие используешь?

  • Способы сбора требований: Это техники, которые аналитик использует для выявления, сбора и документирования потребностей заинтересованных сторон. Основные способы:
    • Интервью (Interviews): Индивидуальные беседы со стейкхолдерами для глубокого понимания их потребностей, проблем и ожиданий. Могут быть структурированными, полуструктурированными или неструктурированными.
    • Семинары/Воркшопы (Workshops): Групповые сессии с участием ключевых стейкхолдеров для совместного определения, обсуждения и согласования требований. Эффективны для быстрого сбора и валидации требований от нескольких сторон.
    • Мозговой штурм (Brainstorming): Генерация идей в группе для решения проблем или определения новых возможностей. Полезен на ранних этапах для выявления высокоуровневых требований.
  • Анализ документов (Document Analysis): Изучение существующей документации (бизнес-процессы, инструкции, ТЗ на старые системы, отчеты,

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@tykurtz
tykurtz / grokking_to_leetcode.md
Last active May 13, 2026 04:46
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window

@mxmlnkn
mxmlnkn / pmemdump.sh
Last active May 13, 2026 04:44
Dump memory of running process
#!/bin/bash
function pmemdump()
{
# Adapted from:
# https://serverfault.com/questions/173999/dump-a-linux-processs-memory-to-file
# Example output for /proc/xxx/maps:
# d7d90000-d7ed0000 rwxp 00000000 00:00 0
# d8ab0000-d8bf0000 rwxp 00000000 00:00 0
# f4111000-f43b9000 rw-s 00000000 00:05 429195289 /SYSV00000000 (deleted)
@LessUp
LessUp / glm-coding-plan-rush-helper.user.js
Last active May 13, 2026 04:44
⚡ GLM Coding Rush — 智谱编程助手一键抢购脚本 | Auto-Purchase Userscript for GLM Coding | 自动解锁售罄 · 高速重试 · 定时触发 · 支付保护 · 中英双语面板 | Auto-unlock sold-out · High-speed retry · Scheduled trigger · Payment guard · Bilingual panel | Tampermonkey/Violentmonkey | 点击 Raw 安装 · Click Raw to install
// ==UserScript==
// @name GLM Coding Rush - 智谱编程助手抢购脚本
// @namespace https://gist.github.com/LessUp
// @version 1.1.0
// @description 智谱 GLM Coding 一键抢购脚本 — 自动解锁售罄按钮 / 高速重试引擎 / bizId 双重校验 / 错误弹窗自动恢复 / 支付弹窗保护 / 秒级定时触发 / 可拖拽浮动面板
// @author LessUp
// @match *://www.bigmodel.cn/*
// @match https://bigmodel.cn/glm-coding*
// @run-at document-start
// @grant none
@brandonhimpfen
brandonhimpfen / wordpress-login-page.css
Last active May 13, 2026 04:36
A Germany themed WordPress login page
body.login {
background: #000;
}
body.login div#login {
color: #ae8400;
}
body.login div#login a {
color: #fff;
}
body.login div#login a:hover {